From dc3c184731ddc349bc5e086204bdaa2204b7dd01 Mon Sep 17 00:00:00 2001 From: "emellor@leeni.uk.xensource.com" Date: Tue, 13 Dec 2005 17:31:35 +0000 Subject: [PATCH] Fix reference to HttpXendClientProtocol. This was previously referring to the abstract base class, which was never going to work. (This is debugging code only, so I presume that no-one has used it for a long time, but it's doing no harm hanging around.) Signed-off-by: Ewan Mellor --- tools/python/xen/xend/XendClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendClient.py b/tools/python/xen/xend/XendClient.py index 4461304cda..920f4fa184 100644 --- a/tools/python/xen/xend/XendClient.py +++ b/tools/python/xen/xend/XendClient.py @@ -354,7 +354,7 @@ class Xend: def getHttpServer(srv=None): """Create and return a xend client. """ - return Xend(srv=srv, client=XendClientProtocol()) + return Xend(srv=srv, client=HttpXendClientProtocol()) def getUnixServer(srv=None): """Create and return a unix-domain xend client. -- 2.30.2